REReplaceNoCase(string, reg_expression, substring [, scope ])Returns string with a regular expression being replaced with substring in the specified scope. The search is case-insensitive.
See also REFind, REFindNoCase, Replace, and ReplaceList.
Any string.
Regular expression to be replaced. This regular expression can include POSIX- specified character classes (for example, [:alpha:], [:digit:], [:upper:], and [:lower:]).
String replacing reg_expression.
Defines how to complete the replace operation:
ONE
-- Replace only the first occurrence (default).
ALL
-- Replace all occurrences.